Troubleshooting errors

Failed to parse new settings

error converting YAML to JSON

YAML syntax is incorrect.

incorrect:

  1. apiVersion: v1
  2. kind: ConfigMap
  3. metadata:
  4. name: argocd-notifications-cm
  5. data:
  6. service.slack: |
  7. token: $slack-token
  8. icon: :rocket:

correct:

  1. apiVersion: v1
  2. kind: ConfigMap
  3. metadata:
  4. name: argocd-notifications-cm
  5. data:
  6. service.slack: |
  7. token: $slack-token
  8. icon: ":rocket:"

service type ‘xxxx’ is not supported

You need to check your argocd-notifications controller version. For instance, the teams integration is to support v1.1.0 and more.

Failed to notify recipient

notification service ‘xxxx’ is not supported”

You have not defined xxxx in argocd-notifications-cm or to fail to parse settings.